home *** CD-ROM | disk | FTP | other *** search
- SYSPIC ; <- script identifier
-
- ;**
- ;** $VER: Amiga.script 1.1
- ;** Demo script for SysPic 4.00
- ;**
- ;** written by Grzegorz Calkowski
- ;**
-
- ; Options section
-
- Pics/amigalogo.ilbm ; picture
- fadein 12 fadeout 12 ; fade options
- clock 520/10/7/digital.font/25 ; realtime clock
- sound /SoundFiles/MidnightBluesTheme.8svx ; sample
- filter=off vcenter delay 10 ; other options
-
- ;
- ; Init section
- ; here we load fonts we'll use
- ;
- init:
- font 1 syspic.font 23
- font 2 syspic.font 13
-
- ;
- ; Main section
- ; we'll write all the texts before showing the picture
- ;
- main:
- setfont 1
- setapen 12
- textxy 164 220 "Multimedia Workstation"
-
- setfont 2
- setapen 1
-
- ; we want this text centered
- center on
- textxy 0 300 "SYSTEM CONFIGURATION:"
- center off
-
- gotoxy 170 330 ; gotoxy command sets current position and the left margin
- rightmargin 450 ; and this command sets, guess it, right margin
-
- ; now we print something about the configuration
-
- text "Processor:" "MC%pr" cr
- text "Coprocessor:" "MC%cp" cr
- text "Graphics chipset:" "%cs" cr
- text "Chip memory:" "%TCM" cr
- text "Fast memory:" "%TFM" cr
- text "Kickstart:" "%os (%ov)" cr
- text "Workbench:" "%wb (%wv)"
-
- setapen 14
- center on
- textxy 0 460 "Today is %DT, please wait while the machine is booting..."
-
- ; IF YOU HAVE ANY PROBLEMS PLEASE REFER TO THE SCRIPT'S DOCS!
-
-